home *** CD-ROM | disk | FTP | other *** search
/ Programming Languages Suite / ProgramD2.iso / Borland / Borland C++ V5.02 / WINSOCK.PAK / SOCKDEMO.RH < prev    next >
Text File  |  1997-05-06  |  5KB  |  181 lines

  1. //wnsckapp.rh
  2.  
  3. // IDHELP BorButton for BWCC dialogs.
  4. //#define IDHELP                  998             // Id of help button
  5.  
  6. //Dialogs:
  7. #include <owl/inputdia.rh>
  8. #define IDD_STREAM    23001
  9. #define IDD_DATAGRAM    23002
  10. #define IDD_LISTEN    23011
  11. #define IDD_CONVERT_ADDRESS    23012
  12. #define IDD_GET_SERVICE_PORT    23013
  13.  
  14. //Dialog Controls:
  15. #define IDC_EDIT_SERVICE    101
  16. #define IDC_EDIT_NAME    102
  17. #define IDC_EDIT_SEND    103
  18. #define IDC_EDIT_RECEIVE    104
  19. #define IDC_BTN_CONVERT    105
  20. #define IDC_EDIT_PROTOCOL    106
  21. #define IDC_BTN_SEND    107
  22. #define IDC_BTN_SEND_CLEAR    109
  23. #define IDC_BTN_RECEIVE_CLEAR    110
  24. #define IDC_EDIT_PORT    111
  25. #define IDC_BTN_LISTEN    109
  26. #define IDC_EDIT_ADDRESS   112
  27. #define IDC_EDIT_ADDRESS_SEND    113
  28. #define IDC_EDIT_ADDRESS_RECEIVE    114
  29. #define IDC_STATIC_STATUS    115
  30. #define IDC_STATIC_PORT    108
  31. #define IDC_BTN_CONNECT    116
  32.  
  33. //Icon
  34. #define IDI_SDIAPPLICATION 1001            // Application icon
  35.  
  36. //Menu identifiers
  37. #define MENU_MAIN  100
  38. #define CM_CONVERT_ADDRESS    101
  39. #define CM_CONVERT_SERVICE    102
  40. #define CM_GET_MY_ADDRESS    103
  41. #define CM_GET_WSADATA       104
  42. #define CM_SHOW_SOCKET_ERROR    105
  43. #define CM_SEND_DATAGRAMS    106
  44. #define CM_STREAM_CONNECT    107
  45. #define CM_STREAM_LISTEN    108
  46. #define CM_HELP_HOW    109
  47.  
  48. //
  49. // CM_FILEnnnn commands (include/owl/editfile.rh except for CM_FILEPRINTPREVIEW)
  50. //
  51. #define CM_FILENEW              24331           // SDI New
  52. #define CM_FILEOPEN             24332           // SDI Open
  53. #define CM_FILECLOSE            24339
  54. #define CM_FILESAVE             24333
  55. #define CM_FILESAVEAS           24334
  56.  
  57.  
  58. //
  59. // Window commands (include/owl/window.rh)
  60. //
  61. #define CM_EXIT                 24310
  62.  
  63.  
  64. //
  65. // CM_EDITnnnn commands (include/owl/window.rh)
  66. //
  67. #define CM_EDITUNDO             24321
  68. #define CM_EDITCUT              24322
  69. #define CM_EDITCOPY             24323
  70. #define CM_EDITPASTE            24324
  71. #define CM_EDITDELETE           24325
  72. #define CM_EDITCLEAR            24326
  73. #define CM_EDITADD              24327
  74. #define CM_EDITEDIT             24328
  75.  
  76.  
  77. //
  78. // Search menu commands (include/owl/editsear.rh)
  79. //
  80. #define CM_EDITFIND             24351
  81. #define CM_EDITREPLACE          24352
  82. #define CM_EDITFINDNEXT         24353
  83.  
  84.  
  85. //
  86. // Help menu commands.
  87. //
  88. #define CM_HELPABOUT            2009
  89.  
  90.  
  91. //
  92. // About Dialogs
  93. //
  94. #define IDD_ABOUT               22000
  95. #define IDC_VERSION             22001
  96. #define IDC_COPYRIGHT           22002
  97. #define IDC_DEBUG               22003
  98.  
  99.  
  100. //
  101. // OWL defined strings
  102. //
  103.  
  104. // Statusbar
  105. #define IDS_MODES               32530
  106. #define IDS_MODESOFF            32531
  107.  
  108.  
  109. // EditFile
  110. #define IDS_UNTITLED            32550
  111. #define IDS_UNABLEREAD          32551
  112. #define IDS_UNABLEWRITE         32552
  113. #define IDS_FILECHANGED         32553
  114. #define IDS_FILEFILTER          32554
  115.                                 
  116. // EditSearch                   
  117. #define IDS_CANNOTFIND          32540
  118.  
  119.  
  120. //
  121. // General & application exception messages (include/owl/except.rh)
  122. //
  123. #define IDS_UNKNOWNEXCEPTION    32767
  124. #define IDS_OWLEXCEPTION        32766
  125. #define IDS_OKTORESUME          32765
  126. #define IDS_UNHANDLEDXMSG       32764
  127. #define IDS_UNKNOWNERROR        32763
  128. #define IDS_NOAPP               32762
  129. #define IDS_OUTOFMEMORY         32761
  130. #define IDS_INVALIDMODULE       32760
  131. #define IDS_INVALIDMAINWINDOW   32759
  132. #define IDS_VBXLIBRARYFAIL      32758
  133.  
  134. //
  135. // TXWindow messages
  136. //
  137. #define IDS_CLASSREGISTERFAIL   32749
  138. #define IDS_CHILDREGISTERFAIL   32748
  139. #define IDS_WINDOWCREATEFAIL    32747
  140. #define IDS_WINDOWEXECUTEFAIL   32746
  141. #define IDS_CHILDCREATEFAIL     32745
  142.  
  143. #define IDS_MENUFAILURE         32744
  144. #define IDS_VALIDATORSYNTAX     32743
  145. #define IDS_PRINTERERROR        32742
  146.  
  147. #define IDS_LAYOUTINCOMPLETE    32741
  148. #define IDS_LAYOUTBADRELWIN     32740
  149.  
  150. //
  151. // TXGdi messages
  152. //
  153. #define IDS_GDIFAILURE          32739
  154. #define IDS_GDIALLOCFAIL        32738
  155. #define IDS_GDICREATEFAIL       32737
  156. #define IDS_GDIRESLOADFAIL      32736
  157. #define IDS_GDIFILEREADFAIL     32735
  158. #define IDS_GDIDELETEFAIL       32734
  159. #define IDS_GDIDESTROYFAIL      32733
  160. #define IDS_INVALIDDIBHANDLE    32732
  161.  
  162.  
  163. // TInputDialog DIALOG resource (include/owl/inputdia.rh)
  164. #define ID_PROMPT               4091
  165. #define ID_INPUT                4090
  166.  
  167.  
  168. // TSlider bitmaps (horizontal and vertical) (include/owl/slider.rh)
  169. #define IDB_HSLIDERTHUMB        32000
  170. #define IDB_VSLIDERTHUMB        32001
  171.  
  172.  
  173. // Validation messages (include/owl/validate.rh)
  174. #define IDS_VALPXPCONFORM       32520
  175. #define IDS_VALINVALIDCHAR      32521
  176. #define IDS_VALNOTINRANGE       32522
  177. #define IDS_VALNOTINLIST        32523
  178.  
  179.  
  180. //#endif         // __wnsckapp_rh sentry.
  181.